home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / ole2book.zip / CHAP11.ZIP / CHAP11 / HSCHMOO / HSCHMOO.RC < prev    next >
Text File  |  1993-06-13  |  2KB  |  60 lines

  1. /*
  2.  * HSCHMOO.RC
  3.  * Schmoo Figure Handler version 1.00 Chapter 11
  4.  *
  5.  * Resources for the Schmoo Handler
  6.  *
  7.  * Copyright (c)1993 Microsoft Corporation, All Rights Reserved.
  8.  *
  9.  * Kraig Brockschmidt, Software Design Engineer
  10.  * Microsoft Systems Developer Relations
  11.  *
  12.  * Internet  :  kraigb@microsoft.com
  13.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  14.  */
  15.  
  16.  
  17. #include <windows.h>
  18. #include <ver.h>
  19.  
  20. 1 ICON hschmoo.ico
  21.  
  22.  
  23. //Default is nodebug
  24. #ifndef DEBUG
  25. #define VER_DEBUG                   0
  26. #else
  27. #define VER_DEBUG                   VS_FF_DEBUG
  28. #endif
  29.  
  30. VS_VERSION_INFO VERSIONINFO 
  31.  FILEVERSION        1,0,0,0
  32.  PRODUCTVERSION     1,0,0,0
  33.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  34.  FILEFLAGS          VER_DEBUG
  35.  FILEOS             VOS_DOS_WINDOWS16
  36.  FILETYPE           VFT_DLL
  37.  FILESUBTYPE        VFT_UNKNOWN
  38.  
  39.  BEGIN
  40.    BLOCK "StringFileInfo"
  41.     BEGIN
  42.      BLOCK "040904E4"
  43.       BEGIN
  44.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  45.        VALUE "FileDescription", "Schmoo Handler 1.0", "\0"
  46.        VALUE "FileVersion",     "1.00\0", "\0"
  47.        VALUE "InternalName",    "HSCHMOO.DLL", "\0"
  48.        VALUE "LegalCopyright",  "Copyright \251 1993 Microsoft Corp.", "\0"
  49.        VALUE "OriginalFilename","HSCHMOO.DLL", "\0"
  50.        VALUE "ProductName",     "Schmoo Handler 1.0", "\0"
  51.        VALUE "ProductVersion",  "1.00\0"
  52.       END
  53.    END
  54.  
  55.    BLOCK "VarFileInfo"
  56.     BEGIN 
  57.      VALUE "Translation", 0x0409, 0x04E4
  58.     END 
  59.  END
  60.